| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 7 |
| Ratio | 100 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | View Code Duplication | "use strict"; |
|
| 18 | RateLimiter.prototype.isActive = function () { |
||
| 19 | var active = []; |
||
| 20 | this.rateLimits.forEach(function (rateLimit) { |
||
| 21 | active.push(rateLimit.isActive()); |
||
| 22 | }); |
||
| 23 | return active; |
||
| 24 | }; |
||
| 25 | RateLimiter.prototype.callsLeft = function () { |
||
| 42 | //# sourceMappingURL=ratelimiter.js.map |